SetAutoAttachRequest

data class SetAutoAttachRequest(autoAttach: Boolean, waitForDebuggerOnStart: Boolean, flatten: Boolean?)

Represents request frame that can be used with Target#setAutoAttach operation call.

Controls whether to automatically attach to new targets which are considered to be related to this one. When turned on, attaches to all existing related targets as well. When turned off, automatically detaches from all currently attached targets.

See also

Constructors

SetAutoAttachRequest
Link copied to clipboard
fun SetAutoAttachRequest(autoAttach: Boolean, waitForDebuggerOnStart: Boolean, flatten: Boolean? = null)

Properties

autoAttach
Link copied to clipboard
val autoAttach: Boolean
Whether to auto-attach to related targets.
flatten
Link copied to clipboard
val flatten: Boolean? = null
Enables "flat" access to the session via specifying sessionId attribute in the commands.
waitForDebuggerOnStart
Link copied to clipboard
val waitForDebuggerOnStart: Boolean
Whether to pause new targets when attaching to them.

Sources

jvm source
Link copied to clipboard